:root {
    --dark-bg: #111416;
    --text-color: #FFFFFF;
    --accent-color: #C6B4FF;
}

@font-face {
    font-family: 'Agilera';
    src: url('./assets/fonts/Agilera.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-color);
    font-family: 'Teachers', sans-serif;
    line-height: 1.5;
    font-size: clamp(16px, 1.5vw, 24px);
}

.cta__buttons{
    display: flex;
}

.call__button {
    color: var(--text-color);
    text-decoration: none;
    padding: 10px 6rem;
    border-radius: 50px;
    font-family: 'Teachers', sans-serif;
    box-shadow: 
        7px 5px 18px rgba(0, 0, 0, 1),
        -2px -4px 10px rgba(255, 255, 255, 0.15);
    transition: transform 0.2s ease;
    margin: 10px;
    text-align: center;
}

.hero{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5vmax;
    padding-top: 8vmax;
    gap: 3vmax;
}

.hero__container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 2vmax;
}

.hero__content {
    text-align: left;
    max-width: 50%;
    width: fit-content;
    align-items: flex-start;
}

.hero__content p{
    margin-left: 20px;
}

.hero__images {
    display: flex;
    gap: 1vmax;
    width: fit-content;
    align-items: flex-end;
}

.hero__image {
    object-fit: cover;
}

.hero__image:first-child {
    margin-bottom: 50px;
}

@media (max-width: 1200px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero__content {
        max-width: 100%;
        text-align: center;
    }

    .hero__images {
        justify-content: center;
    }
}


h1 {
    font-size: clamp(48px, 6vw, 200px);
    font-weight: 300;
    font-family: 'Agilera', sans-serif;
    line-height: 1.2;
    margin-left: 1rem;
    margin-bottom: 2rem;
}

h2 {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 300;
    margin-bottom: 2rem;
    font-family: 'Agilera', sans-serif;
}

.prices {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3vmax 10vmax;
}

.prices h2{
    font-size: clamp(36px, 8vw, 128px);
    margin: 0;
    line-height: 1;
    margin-bottom: -40px;
}

.prices__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4vmax;
    margin: 4vmax 0;
    padding: 4vmax;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.prices__cards {
    display: flex;
    gap: 4vmax;
    align-items: flex-start;
    justify-content: center;
}

.price__card {
    align-self: center;
    width: 20vw;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #0F1315;
    box-shadow: 
        7px 5px 18px rgba(0, 0, 0, 0.6),
        -2px -4px 10px rgba(255, 255, 255, 0.12);
}

.price__card:nth-child(2) {
    margin-top: 50px;
}

.prices .cta__buttons {
    margin-top: 2vmax;
}

.duration {
    font-family: 'Agilera', sans-serif;
    font-size: clamp(20px , 2vw, 48px);
    margin: 0;
    margin-top: .8em;
}

.amount {
    font-family: 'Teachers', sans-serif;
    font-size: clamp(36px , 3vw, 64px);
    color: var(--accent-color);
    margin: 0;
    font-weight: 600;
}

.tarot{
    padding: 5vmax 10vmax;
    display: flex;
    justify-content: center;
    display: flex;
    gap: 5vmax;
}

.tarot h2{
    margin-top: 3vmax;
    margin-bottom: 0;
    font-size: clamp(36px, 5vw, 128px);
}

.tarot__content{
    display: flex;
    flex-direction: column;
    gap: 2vmax;
    width: 60%;
}

.tarot__content p:last-of-type{
    color: #C6B4FF;
}

.tarot__content p, .tarot .cta__buttons{
    margin-left: 5vmax;
}

.tarot .call__button{
    width: 100%;
    padding: 10px 0;
}

.tarot__images{
    position: relative;
    height: fit-content;
    align-self: center;
    width: 40%;
}

.tarot__image{
    max-width: 100%;
}

.tarot__image:last-child{
    width: 20vw;
    position: absolute;
    bottom: -10%;
    right: -25%;
}



.testimonials {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5vmax 10vmax;
    text-align: center;
    
}

.testimonials__grid {
    display: flex;
    gap: 4vmax;
    margin: 4vmax 0;
    align-items: flex-start;
    justify-content: center;
}

.testimonial {
    width: 30vw;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: #0F1315;
}

.testimonial:nth-child(2) {
    margin-top: 50px;
}

.testimonial__image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.testimonial h3 {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 1rem;
    font-family: 'Teachers', sans-serif;
    color: var(--accent-color);
}

.testimonial p {
    font-size: 16px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
    max-width: 80%;
}

footer {
    margin: 0 10vmax;
    padding: 5vmax;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__links {
    display: flex;
    justify-content: center;
    gap: 2vmax;
    flex-wrap: wrap;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.2);
    text-decoration: none;
    font-size: 16px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer__links a:hover {
    opacity: 1;
}

@media (max-width: 1200px) {
    .hero__container{
        flex-direction: column;
        align-items: center;
    }
    
    .tarot__image {
        width: 100%;
        max-width: 600px;
    }
    .testimonials__grid{
        flex-wrap: wrap;
    }
    .testimonial{
        width: 400px;
    }
    .testimonial:nth-child(2){
        margin: 0;
    }
}

@media (max-width: 1000px){
    .tarot__images{
        width: 30%;
    }
}

@media (max-width: 768px) {
    .hero__images{
        width: 100%;
    }
    .hero__image{
        max-width: 100%;
    }
    .hero__image:first-child{
        display: none;
    }
    .testimonials__grid {
        flex-direction: column;
        align-items: center;
    }
    .call__button{
        padding: 10px 0;
        width: 400px;
        max-width: 100%;
        margin: 5px 0;
    }
    .cta__buttons {
        display: flex;
        gap: 2vmax;
        margin-top: 2vmax;
        width: 100%;
        align-items: center;
    }
    .prices{
        padding: 5vmax;
    }
    .prices h2{
        margin-bottom: 1rem;
    }
    .prices__cards{
        flex-direction: column;
        width: 500px;
        max-width: 100%;
    }
    .price__card{
        width: 300px;
        max-width: 100%;
    }
    .price__card:nth-child(2){
        margin-top: 0;
    }
    
    .call__button:hover {
        transform: translateY(-2px);
    }

    .cta__buttons {
        flex-direction: column;
    }
    .tarot__images{
        display: none;
    }
    .tarot{
        padding: 5vmax;
    }
    .tarot__content{
        width: 100%;
    }
    .tarot__content p, .tarot .cta__buttons{
        margin-left: 0;
    }
    .testimonial{
        max-width: 100%;
    }
    .testimonials{
        padding: 2vmax;
    }
    .testimonials__grid{
        max-width: 100%;
    }
    footer{
        margin: 0;
        margin-top: 5vmax;
        padding: 5vmax;
        width: 100%;
    }
    .footer__links{
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        justify-items: space-between;
    }
    .footer__links a:nth-child(even){
        justify-self: end;
    }
}

@media (max-width: 420px){
    .hero{
        padding: 5vmax 2vmax;
    }
    .prices{
        padding: 2vmax;
    }
    .prices__container{
        padding: 5vmax 2vmax;
    }
    .testimonial p{
        font-size: clamp(8px, 3vw, 16px);
    }
} 